home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / default / options.mk < prev    next >
Encoding:
Text File  |  1995-05-19  |  514 b   |  30 lines

  1. #
  2. # default/options.mk --- Part of Makefile for PFE, compiler options.
  3. #
  4.  
  5. # You *must* check file `INSTALL' if you need -D_BSD.
  6. # Read file `TUNING' for the meaning of -DUSE_REGS.
  7.  
  8. # Where you store online help files and other stuff. Defaults to
  9. PREFIX    = /usr/local
  10. PFELIB    = $(PREFIX)/lib/pfe
  11. PFEHLP    = $(PFELIB)/help
  12.  
  13. SYSTEM    = UNIX
  14.  
  15. CC    = cc
  16. OPTIM    = -O# -DUSE_REGS -DUNROLL_NEXT
  17. DEBUG    = -g
  18.  
  19. CL    = $(CC)
  20. CPP    = $(CC) -E
  21.  
  22. OPTIONS    =# -D_BSD
  23. STRIP    = -s
  24. TERM_O    = termunix$o
  25. SYS_O    = unix$o
  26. LFLAGS    = 
  27. LIBS    = -ltermcap -lm
  28.  
  29.  
  30.